Address

interface Address

The user's address containing information about a street, city, state, etc.

Since

7.23

Types

Link copied to clipboard
class Builder
A builder of Address.

Functions

Link copied to clipboard
open fun city(): String
The name of the city.
Link copied to clipboard
open fun countryCode(): String
The ISO 3166 2-letter country code.
Link copied to clipboard
A subdivision of a city, e.g., an inner-city district or a suburb.
Link copied to clipboard
open fun newBuilder(countryCode: String): Address.Builder
Creates a new Address builder with the given ISO 3166 country code.
Link copied to clipboard
open fun state(): String
The name of the state.
Link copied to clipboard
open fun streetAddress(): String
The full street address.
Link copied to clipboard
open fun zip(): String
The ZIP code.